projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cc68f1
)
(with-temp-message): Fix the other call to message to use %s.
author
Karl Heuer
<kwzh@gnu.org>
Fri, 7 May 1999 09:42:50 +0000
(09:42 +0000)
committer
Karl Heuer
<kwzh@gnu.org>
Fri, 7 May 1999 09:42:50 +0000
(09:42 +0000)
lisp/subr.el
patch
|
blob
|
history
diff --git
a/lisp/subr.el
b/lisp/subr.el
index 738b8994c3f9866fde051a9b8c0424a415ddf8c4..c2464c942f1dab7460ad82a434e694e746fd3f9d 100644
(file)
--- a/
lisp/subr.el
+++ b/
lisp/subr.el
@@
-974,7
+974,7
@@
Use a MESSAGE of \"\" to temporarily clear the echo area."
(progn
(when ,temp-message
(setq ,current-message (current-message))
- (message ,temp-message))
+ (message
"%s"
,temp-message))
,@body)
(and ,temp-message ,current-message
(message "%s" ,current-message))))))